e0515805812a0b0132656e1ad813a82c2cd46921,src/main/java/org/fenixedu/academic/domain/util/email/ExecutionCourseSender.java,ExecutionCourseSender,ExecutionCourseSender,#ExecutionCourse#,56

Before Change


        final String labelECResponsibleTeachers =
                BundleUtil.getString(Bundle.SITE,
                        "label.org.fenixedu.academic.domain.accessControl.ExecutionCourseResponsibleTeachersGroupWithName",
                        new String[] { executionCourse.getNome() });
        // fixed recipients
        addRecipients(new Recipient(labelECTeachers, TeacherGroup.get(executionCourse)));
        addRecipients(new Recipient(labelECStudents, StudentGroup.get(executionCourse)));

After Change


                        executionCourse.getNome());
        final String labelECResponsibleTeachers = BundleUtil.getString(Bundle.SITE,
                "label.org.fenixedu.academic.domain.accessControl.ExecutionCourseResponsibleTeachersGroupWithName",
                executionCourse.getNome());
        // fixed recipients
        addRecipients(new Recipient(labelECTeachers, TeacherGroup.get(executionCourse)));
        addRecipients(new Recipient(labelECStudents, StudentGroup.get(executionCourse)));